home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / Issue59 / Arch / Extended Sample / UnitFormEntityEmployee.dfm < prev    next >
Encoding:
Text File  |  2000-05-19  |  2.3 KB  |  115 lines

  1. inherited FormEntityEmployee: TFormEntityEmployee
  2.   Left = 878
  3.   Top = 90
  4.   Caption = 'FormEntityEmployee'
  5.   PixelsPerInch = 96
  6.   TextHeight = 13
  7.   object Label1: TLabel [0]
  8.     Left = 24
  9.     Top = 44
  10.     Width = 35
  11.     Height = 13
  12.     Caption = 'EmpNo'
  13.     FocusControl = DBEdit1
  14.   end
  15.   object Label2: TLabel [1]
  16.     Left = 24
  17.     Top = 88
  18.     Width = 48
  19.     Height = 13
  20.     Caption = 'LastName'
  21.     FocusControl = DBEdit2
  22.   end
  23.   object Label3: TLabel [2]
  24.     Left = 24
  25.     Top = 132
  26.     Width = 47
  27.     Height = 13
  28.     Caption = 'FirstName'
  29.     FocusControl = DBEdit3
  30.   end
  31.   object Label4: TLabel [3]
  32.     Left = 24
  33.     Top = 176
  34.     Width = 46
  35.     Height = 13
  36.     Caption = 'PhoneExt'
  37.     FocusControl = DBEdit4
  38.   end
  39.   object Label5: TLabel [4]
  40.     Left = 24
  41.     Top = 220
  42.     Width = 42
  43.     Height = 13
  44.     Caption = 'HireDate'
  45.     FocusControl = DBEdit5
  46.   end
  47.   object Label6: TLabel [5]
  48.     Left = 24
  49.     Top = 264
  50.     Width = 29
  51.     Height = 13
  52.     Caption = 'Salary'
  53.     FocusControl = DBEdit6
  54.   end
  55.   object DBEdit1: TDBEdit [8]
  56.     Left = 24
  57.     Top = 60
  58.     Width = 64
  59.     Height = 21
  60.     DataField = 'EmpNo'
  61.     DataSource = DataSourceEmployee
  62.     TabOrder = 2
  63.   end
  64.   object DBEdit2: TDBEdit [9]
  65.     Left = 24
  66.     Top = 104
  67.     Width = 124
  68.     Height = 21
  69.     DataField = 'LastName'
  70.     DataSource = DataSourceEmployee
  71.     TabOrder = 3
  72.   end
  73.   object DBEdit3: TDBEdit [10]
  74.     Left = 24
  75.     Top = 148
  76.     Width = 94
  77.     Height = 21
  78.     DataField = 'FirstName'
  79.     DataSource = DataSourceEmployee
  80.     TabOrder = 4
  81.   end
  82.   object DBEdit4: TDBEdit [11]
  83.     Left = 24
  84.     Top = 192
  85.     Width = 28
  86.     Height = 21
  87.     DataField = 'PhoneExt'
  88.     DataSource = DataSourceEmployee
  89.     TabOrder = 5
  90.   end
  91.   object DBEdit5: TDBEdit [12]
  92.     Left = 24
  93.     Top = 236
  94.     Width = 112
  95.     Height = 21
  96.     DataField = 'HireDate'
  97.     DataSource = DataSourceEmployee
  98.     TabOrder = 6
  99.   end
  100.   object DBEdit6: TDBEdit [13]
  101.     Left = 24
  102.     Top = 280
  103.     Width = 64
  104.     Height = 21
  105.     DataField = 'Salary'
  106.     DataSource = DataSourceEmployee
  107.     TabOrder = 7
  108.   end
  109.   object DataSourceEmployee: TDataSource
  110.     DataSet = ObjectEntityEmployee.QueryEmployee
  111.     Left = 304
  112.     Top = 212
  113.   end
  114. end
  115.